home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 July & August / PCWorld_2006-07-08_cd.bin / v cisle / acehtml / acehtmlfreeware.exe / scriptdef / Delayed Popup.sd < prev    next >
INI File  |  2004-06-28  |  1KB  |  52 lines

  1. [SUBJECT]
  2. Description=Automatically opens a new popup window a given number of seconds after the page finishes loading
  3. ImageIndex=-1
  4. Folder=Tools
  5.  
  6. [HEAD_TEXT]
  7. ;<script language="JavaScript">
  8. ;<!-- Begin
  9. ;closetime = 0; // Close window after __ number of seconds?
  10. ;// 0 = do not close, anything else = number of seconds
  11. ;
  12. ;function Start(URL, WIDTH, HEIGHT) {
  13. ;windowprops = "left=50,top=50,width=" + WIDTH + ",height=" + HEIGHT;
  14. ;preview = window.open(URL, "preview", windowprops);
  15. ;if (closetime) setTimeout("preview.close();", closetime*1000);
  16. ;}
  17. ;
  18. ;function doPopup() {
  19. ;url = "`URL`";
  20. ;width = `Width`;  // width of window in pixels
  21. ;height = `Height`; // height of window in pixels
  22. ;delay = `Delay`;    // time in seconds before popup opens
  23. ;timer = setTimeout("Start(url, width, height)", delay*1000);
  24. ;}
  25. ;//  End -->
  26. ;</script>
  27. ;
  28.  
  29. [BODY_TAG]
  30. ;OnLoad="doPopup();"
  31.  
  32.  
  33.  
  34. [`URL`]
  35. Kind=S
  36. Value=http://www.yahoo.com
  37.  
  38. [`Width`]
  39. Kind=S
  40. Value=250
  41.  
  42. [`Height`]
  43. Kind=S
  44. Value=150
  45.  
  46. [`Delay`]
  47. Kind=S
  48. Value=2
  49.  
  50.  
  51.  
  52.